home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2006 May
/
PCWMAY06.iso
/
Software
/
Resources
/
Bart's PE Builder 3.1.9
/
pebuilder319.exe
/
{app}
/
plugin
/
bartpe
/
run.cmd
< prev
Wrap
OS/2 REXX Batch file
|
2004-12-03
|
236b
|
15 lines
@echo off
if "%*" == "" (
echo Argument "%*" not found!
goto _err)
call %*
goto _end
:_err
echo.
echo BARTPE: There was an error, script aborted!!!
rem set errorlevel to 1 by (mis)using color
color 00
:_end
echo.
pause